b $wpdb WordPress database abstraction object. */ function wp_register_persisted_preferences_meta() { /* * Create a meta key that incorporates the blog prefix so that each site * on a multisite can have distinct user preferences. */ global $wpdb; $meta_key = $wpdb->get_blog_prefix() . 'persisted_preferences'; register_meta( 'user', $meta_key, array( 'type' => 'object', 'single' => true, 'show_in_rest' => array( 'name' => 'persisted_preferences', 'type' => 'object', 'schema' => array( 'type' => 'object', 'context' => array( 'edit' ), 'properties' => array( '_modified' => array( 'description' => __( 'The date and time the preferences were updated.' ), 'type' => 'string', 'format' => 'date-time', 'readonly' => false, ), ), 'additionalProperties' => true, ), ), ) ); } /** * Sets the last changed time for the 'users' cache group. * * @since 6.3.0 */ function wp_cache_set_users_last_changed() { wp_cache_set_last_changed( 'users' ); } /** * Checks if password reset is allowed for a specific user. * * @since 6.3.0 * * @param int|WP_User $user The user to check. * @return bool|WP_Error True if allowed, false or WP_Error otherwise. */ function wp_is_password_reset_allowed_for_user( $user ) { if ( ! is_object( $user ) ) { $user = get_userdata( $user ); } if ( ! $user || ! $user->exists() ) { return false; } $allow = true; if ( is_multisite() && is_user_spammy( $user ) ) { $allow = false; } /** * Filters whether to allow a password to be reset. * * @since 2.7.0 * * @param bool $allow Whether to allow the password to be reset. Default true. * @param int $user_id The ID of the user attempting to reset a password. */ return apply_filters( 'allow_password_reset', $allow, $user->ID ); }
Fatal error: Uncaught Error: Call to undefined function _wp_get_current_user() in /www/wwwroot/backyard.com.tr/wp-includes/pluggable.php:70 Stack trace: #0 /www/wwwroot/backyard.com.tr/wp-includes/capabilities.php(877): wp_get_current_user() #1 /www/wwwroot/backyard.com.tr/wp-content/plugins/wordfence/lib/wfUtils.php(1301): current_user_can() #2 /www/wwwroot/backyard.com.tr/wp-content/plugins/wordfence/lib/wordfenceClass.php(2120): wfUtils::isAdmin() #3 /www/wwwroot/backyard.com.tr/wp-includes/class-wp-hook.php(310): wordfence::veryFirstAction() #4 /www/wwwroot/backyard.com.tr/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters() #5 /www/wwwroot/backyard.com.tr/wp-includes/plugin.php(517): WP_Hook->do_action() #6 /www/wwwroot/backyard.com.tr/wp-settings.php(495): do_action() #7 /www/wwwroot/backyard.com.tr/wp-config.php(91): require_once('/www/wwwroot/ba...') #8 /www/wwwroot/backyard.com.tr/wp-load.php(50): require_once('/www/wwwroot/ba...') #9 /www/wwwroot/backyard.com.tr/wp-blog-header.php(13): require_once('/www in /www/wwwroot/backyard.com.tr/wp-includes/pluggable.php on line 70

Fatal error: Uncaught Error: Call to undefined function get_current_user_id() in /www/wwwroot/backyard.com.tr/wp-content/plugins/wordfence/lib/wfLog.php:505 Stack trace: #0 /www/wwwroot/backyard.com.tr/wp-content/plugins/wordfence/lib/wfLog.php(252): wfLog->logHitOK() #1 [internal function]: wfLog->logHit() #2 {main} thrown in /www/wwwroot/backyard.com.tr/wp-content/plugins/wordfence/lib/wfLog.php on line 505